home *** CD-ROM | disk | FTP | other *** search
- #!/usr/bin/perl
-
- eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
- if 0; # not running under some shell
-
- =head1 NAME
-
- tails-create-iuk - create an Incremental Upgrade Kit
-
- =head1 VERSION
-
- Version 0.3.7
-
- =cut
-
- use strict;
- use warnings FATAL => 'all';
- use 5.10.1;
-
- our $VERSION = '0.3.7';
-
- use FindBin;
- use lib "$FindBin::Bin/../lib";
-
- use Tails::IUK;
-
- Tails::IUK->new_with_options()->run;
-